home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
make
/
icmake-6.000
/
icmake-6
/
icmake
/
comp
/
testoper.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-02-08
|
313 b
|
21 lines
/*
T E S T O P E R . C
*/
#include "iccomp.h"
int test_operand(e, opcode)
ESTRUC_
*e;
OPCODE_
opcode;
{
register int
ret;
if ( (ret = !test_type(e, optype[opcode])) )
semantic(illegal_type, opstring[opcode]);
return (ret);
}